Keycloak REST Services 1.5.0-Final

Path: / admin / realms / {realm} / authentication / flows / {id}

Path parameters:
realm - realm name (not id!)
id -

Resource Methods
Method Summary
NameDescription
GET /admin/realms/{realm}/authentication/flows/{id} 
DELETE /admin/realms/{realm}/authentication/flows/{id} 

Method Detail

GET /admin/realms/{realm}/authentication/flows/{id}

HTTP Example:
GET /admin/realms/{realm}/authentication/flows/{id}
API Example:

AuthenticationManagementResource.getFlow({'realm': /* name realm name (not id!) */,
  'id': …});

Output:
AuthenticationFlowModel
Produces:
application/json

DELETE /admin/realms/{realm}/authentication/flows/{id}

HTTP Example:
DELETE /admin/realms/{realm}/authentication/flows/{id}
API Example:

AuthenticationManagementResource.deleteFlow({'realm': /* name realm name (not id!) */,
  'id': …});

Output:
void

Keycloak REST Services 1.5.0-Final